I need to create a log file daily in my working business hours.
Basically I need two things:-
1. How can I create a new log file each day? The log file will be have the name in a format like MMDDYYYY.txt
2. How can I create it just after midnight in case it is running into all hours of the night?
Anonymous User
13-Nov-2013I willrecommend something like this:
string logFile = DateTime.Now.ToString("yyyyMMdd") + ".txt";if (!System.IO.File.Exists(logFile))
{
System.IO.File.Create(logFile);
}
else
{
//append to logFile here...
}